This repository has no description
semble
/
src
/
webapp
/
app
/
(dashboard)
/
profile
/
[handle]
/
(withoutHeader)
/
collections
/
[collectionId]
/
page.tsx
329 B
11 lines
1import CollectionContainer from '@/features/collections/containers/collectionContainer/CollectionContainer';
2
3interface Props {
4 params: Promise<{ collectionId: string }>;
5}
6
7export default async function Page(props: Props) {
8 const { collectionId } = await props.params;
9
10 return <CollectionContainer id={collectionId} />;
11}